home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / hwclock.conf < prev    next >
Text File  |  2009-10-22  |  557b  |  20 lines

  1. # hwclock - adjust system clock and timezone
  2. #
  3. # The hwclock task adjusts the system clock when the hardware clock is
  4. # set to localtime (e.g. when dual-booting with Windows), and also
  5. # ensures that the system timezone is set so that timestamps are written
  6. # to FAT devices.
  7.  
  8. description    "adjust system clock and timezone"
  9.  
  10. start on starting mountall
  11.  
  12. task
  13.  
  14. script
  15.     . /etc/default/rcS
  16.     [ "$UTC" = "yes" ] && tz="--utc" || tz="--localtime"
  17.     [ "$BADYEAR" = "yes" ] && badyear="--badyear"
  18.     exec hwclock --systz $tz --noadjfile $badyear
  19. end script
  20.